home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / H / KEY.H < prev    next >
C/C++ Source or Header  |  1997-06-11  |  494b  |  27 lines

  1. #ifndef __KEY_H__
  2. #define __KEY_H__
  3.  
  4. #define KB_ESC   27
  5. #define KB_ENTER 13
  6. #define KB_BS    8
  7.  
  8. //The following are from _getch() only
  9.  
  10. #define KB_UP    0x148
  11. #define KB_DOWN  0x150
  12. #define KB_LEFT  0x14b
  13. #define KB_RIGHT 0x14d
  14. #define KB_F1    0x13b
  15. #define KB_F2    0x13c
  16. #define KB_F3    0x13d
  17. #define KB_F4    0x13e
  18. #define KB_F5    0x13f
  19. #define KB_F6    0x140
  20. #define KB_F7    0x141
  21. #define KB_F8    0x142
  22. #define KB_F9    0x143
  23. #define KB_F10   0x144
  24.  
  25. #endif
  26.  
  27.